home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / junkLog.js < prev    next >
Encoding:
Text File  |  2004-04-18  |  770 b   |  37 lines

  1. var gLogView;
  2. var gLogJunk;
  3. var gSpamSettings;
  4.  
  5. function onLoad()
  6. {
  7.   gSpamSettings = window.arguments[0].spamSettings;
  8.  
  9.   gLogJunk = document.getElementById("logJunk");
  10.   gLogJunk.checked = gSpamSettings.loggingEnabled;
  11.  
  12.   gLogView = document.getElementById("logView");
  13.  
  14.   // for security, disable JS
  15.   gLogView.docShell.allowJavascript = false;
  16.  
  17.   // if log doesn't exist, this will create an empty file on disk
  18.   // otherwise, the user will get an error that the file doesn't exist
  19.   gSpamSettings.ensureLogFile();
  20.  
  21.   gLogView.setAttribute("src", gSpamSettings.logURL);
  22. }
  23.  
  24. function toggleJunkLog()
  25. {
  26.   gSpamSettings.loggingEnabled =  gLogJunk.checked;
  27. }
  28.  
  29. function clearLog()
  30. {
  31.   gSpamSettings.clearLog();
  32.  
  33.   // reload the newly truncated file
  34.   gLogView.reload();
  35. }
  36.  
  37.